home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1993 / Internet Info CD-ROM (Walnut Creek) (1993).iso / standards / misc / Graphics / AtariST < prev    next >
Internet Message Format  |  1993-07-15  |  31KB

  1. From gl8f@astsun9.astro.Virginia.EDU Sun Mar 17 15:53:58 1991
  2. Return-Path: <gl8f@astsun9.astro.virginia.edu>
  3. Date: Sun, 17 Mar 91 15:07:10 -0500
  4. From: gl8f@astsun9.astro.Virginia.EDU (Greg Lindahl)
  5. To: bzs@world.std.com
  6. Subject: modest submission for Open Book Initiative
  7.  
  8.  
  9. This is a document describing mostly Atari ST picture formats. Obscure,
  10. yes, but might come in handy for someone someday. It is copyrighted but
  11. I think the distribution terms fit your standards. Would go in
  12. Standards/Graphics/Formats/Atari_ST.doc or something.
  13.  
  14. Are you interested in people passing things like this to you? There's
  15. a lot of obscure stuff out there...
  16.  
  17. -- greg
  18.  
  19. orgininal: atari.archive.umich.edu:~/atari/graphics/picfmt.doc
  20.  
  21.                            ST Picture Formats
  22.                            ------------------
  23.                                Edited by:
  24.  
  25.                               David Baggett
  26.                          5640 Vantage Point Road
  27.                          Columbia, MD  21044 USA
  28.                              (301)  596-4779    
  29.                           (usenet: dmb@TIS.COM)
  30.  
  31.                    (Please report errors or additions.)
  32.  
  33.         Copyright (C) 1988, 1989, 1990, 1991 by David M. Baggett
  34.  
  35.  
  36.     Non-profit redistribution of this document is permitted, provided
  37.     the document is not modified in any way.
  38.  
  39.     Reproduction of this document in whole or in part for  commercial
  40.     purposes is expressly forbidden without the prior written consent
  41.     of David M. Baggett.
  42.  
  43.     The  information  presented here is not guaranteed to be correct.
  44.     The editor and contributors will in no event be liable for direct,
  45.     indirect, incidental, or consequential damages resulting from the 
  46.     use of the information in this document.
  47.  
  48.     This document is the product of many hours of volunteer work by a
  49.     large number of people. Please respect this -- do not violate the
  50.     distribution policy.
  51.  
  52.  
  53.                               CONTRIBUTORS
  54.   
  55.     Steve Belczyk  Phil Blanchfield  Jason Blochowiak  John Brochu**
  56.        David Brooks  Daniel Deimert  Neil Forsyth   Stefan Hoehn  
  57.         Gerfried Klein   Ken MacLeod  Jim McCabe  Darek Mihocka   
  58.          David Mumper   George Nassas   George Seto  Joe Smith  
  59.               Greg Wageman   Roland Waldi*  Gerry Wheeler
  60.  
  61.  
  62.                                 Contents 
  63.                                 --------
  64.  
  65.         NEOchrome                               *.NEO
  66.         NEOchrome Animation                     *.ANI
  67.         DEGAS                                   *.PI?   ? = 1, 2, 3
  68.         DEGAS Elite                             *.PI?   ? = 1, 2, 3
  69.         DEGAS Elite (Compressed)                *.PC?   ? = 1, 2, 3
  70.         Tiny                                    *.TN?   ? = 1, 2, 3, Y
  71.         Spectrum 512                            *.SPU
  72.         Spectrum 512 (Compressed)               *.SPC
  73.         Art Director                            *.ART
  74.         C.O.L.R. Object Editor Mural            *.MUR
  75.         Doodle                                  *.DOO
  76.         Animatic Film                           *.FLM
  77.         GEM Bit Image                           *.IMG
  78.         STAD                                    *.PAC
  79.         Imagic Film/Picture                     *.IC?   ? = 1, 2, 3
  80.         IFF                                     *.IFF
  81.         MacPaint                                *.MAC
  82.         PackBits Compression Algorithm
  83.  
  84.  
  85.                         Introductory Information
  86.                         ------------------------
  87. word    = 2 bytes
  88. long    = 4 bytes
  89. palette = Hardware color palette, stored as 16 words.  First word is
  90.           color register zero (background), last word is color register
  91.           15.  Each word has the form:
  92.  
  93.           Bit:  (MSB) 15 14 13 12 11 10 09 08 07 06 05 04 03 02 01 00 (LSB)
  94.                       -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
  95.                        0  0  0  0  0 R2 R1 R0  0 G2 G1 G0  0 B2 B1 B0
  96.  
  97.           R2 = MSB of red intensity
  98.           R0 = LSB of red intensity
  99.  
  100.           G2 = MSB of green intensity
  101.           G0 = LSB of green intensity
  102.  
  103.           B2 = MSB of blue intensity
  104.           B0 = LSB of blue intensity
  105.  
  106.           Intensity ranges from 0 (color not present) to 7 (highest
  107.           intensity).
  108.  
  109.           Example: { red = 7, green = 3, blue = 5 } -> 0735 (hex)
  110.  
  111.           Caveat:  It is wise to mask off the upper four bits of each
  112.                    palette entry, since a few programs store special
  113.                    information there (most notably Art Studio).
  114.  
  115.  
  116.                              The Formats
  117.                              -----------
  118.  
  119. <NEOchrome>     *.NEO
  120.  
  121. 1 word          flag byte [always 0]
  122. 1 word          resolution [0 = low res, 1 = medium res, 2 = high res]
  123. 16 words        palette
  124. 12 bytes        filename [usually "        .   "]
  125. 1 word          color animation limits.  High bit (bit 15) set if color
  126.                 animation data is valid.  Low byte contains color animation
  127.                 limits (4 most significant bits are left/lower limit,
  128.                 4 least significant bits are right/upper limit).
  129. 1 word          color animation speed and direction.  High bit (bit 15) set
  130.                 if animation is on.  Low order byte is # vblanks per step.
  131.                 If negative, scroll is left (decreasing).  Number of vblanks
  132.                 between cycles is |x| - 1
  133. 1 word          # of color steps (as defined in previous word) to display
  134.                 picture before going to the next.  (For use in slide shows)
  135. 1 word          image X offset [unused, always 0]
  136. 1 word          image Y offset [unused, always 0]
  137. 1 word          image width [unused, always 320]
  138. 1 word          image height [unused, always 200]
  139. 33 words        reserved for future expansion
  140. 16000 words     picture data (screen memory)
  141. -----------
  142. 32128 bytes     total
  143.  
  144.  
  145. <NEOchrome Animation>        *.ANI
  146.  
  147. NOTE:      To get this feature on versions 0.9 and later select the Grabber
  148.         icon and click both mouse buttons in the eye of the second R in the
  149.         word GRABBER.
  150.            Interestingly enough, some versions of NEO only require you
  151.         to press the right button, not both.  Hmmm...
  152.  
  153. 1 long          magic number BABEEBEA (hex) (seems to be ignored)
  154. 1 word          width of image in bytes (always divisible by 8)
  155. 1 word          height of image in scan lines
  156. 1 word          size of image in bytes + 10 (!)
  157. 1 word          x coordinate of image (must be divisible by 16) - 1
  158. 1 word          y coordinate of image - 1
  159. 1 word          number of frames
  160. 1 word          animation speed (# vblanks to delay between frames)
  161. 1 long          reserved; should be zero
  162. --------
  163. 22 bytes        total for header
  164.  
  165. ? words         image data (words of screen memory) for each frame, in 
  166.                 order
  167.  
  168.  
  169. <DEGAS>         *.PI1 (low resolution)
  170.                 *.PI2 (medium resolution)
  171.                 *.PI3 (high resolution)
  172.  
  173. 1 word          resolution (0 = low res, 1 = medium res, 2 = high res)
  174.                 Other bits may be used in the future; use a simple bit
  175.                 test rather than checking for specific word values.
  176. 16 words        palette
  177. 16000 words     picture data (screen memory)
  178. -----------
  179. 32034 bytes     total
  180.  
  181.  
  182. <DEGAS Elite>   *.PI1 (low resolution)
  183.                 *.PI2 (medium resolution)
  184.                 *.PI3 (high resolution)
  185.  
  186. 1 word          resolution (0 = low res, 1 = medium res, 2 = high res)
  187.                 Other bits may be used in the future; use a simple bit
  188.                 test rather than checking for specific word values.
  189. 16 words        palette
  190. 16000 words     picture data (screen memory)
  191. 4 words         left color animtion limit table (starting color numbers)
  192. 4 words         right color animation limit table (ending color numbers)
  193. 4 words         animation channel direction flag (0 = left, 1 = off, 2 = right)
  194. 4 words         128 - animation channel delay in 1/60's of a second. [0 - 128]
  195.                 (I.e., subtract word from 128 to get 1/60th's of a second.)
  196. -----------
  197. 32066 bytes     total
  198.  
  199.  
  200. <DEGAS Elite (Compressed)>      *.PC1 (low resolution)
  201.                                 *.PC2 (medium resolution)
  202.                                 *.PC3 (high resolution)
  203.  
  204. 1 word          resolution (same as Degas, but high order bit is set;
  205.                 i.e., hex 8000 = low res, hex 8001 = medium res,
  206.                 hex 8002 = high res).  Other bits may be used in the
  207.                 future; use a simple bit test rather than checking
  208.                 for specific word values.
  209. 16 words        palette
  210. < 32000 bytes   control/data bytes
  211. 4 words         left color animation limit table (starting color numbers)
  212. 4 words         right color animation limit table (ending color numbers)
  213. 4 words         animation channel direction flag [0 = left, 1 = off, 2 = right]
  214. 4 words         128 - animation channel delay in 1/60's of a second. [0 - 128]
  215.                 (I.e., subtract word from 128 to get 1/60th's of a second.)
  216. -----------
  217. < 32066 bytes   total
  218.  
  219. Compression Scheme:
  220.  
  221.    PackBits compression is used (see below).  Each scan line is compressed
  222. separately; i.e., all data for a given scan line appears before any data
  223. for the next scan line.  The scan lines are specified from top to bottom
  224. (i.e., 0 is first).  For each scan line, all the data for a given bit plane
  225. appears before any data for the next higher order bit plane.  Note this is
  226. identical to the IFF 'BODY' image data.
  227.    To clarify:  The first data in the file will be the data for the lowest
  228. order bit plane of scan line zero, followed by the data for the next higher
  229. order bit plane of scan line zero, etc., until all bit planes have been
  230. specified for scan line zero.  The next data in the file will be the data
  231. for the lowest order bit plane of scan line one, followed by the data for
  232. the next higher order bit plane of scan line one, etc., until all bit planes
  233. have been specified for all scan lines.
  234.  
  235. Caveats:
  236.  
  237.    DEGAS Elite's picture loading routine places some restrictions on
  238. compressed DEGAS files:
  239.  
  240.         o Elite uses a 40-byte buffer to store data being decompressed.
  241.  
  242.         o Whenever a control command is encountered, bytes are stuffed
  243.         in this buffer.
  244.  
  245.         o The buffer is only emptied when there are EXACTLY 40
  246.         characters in it.
  247.  
  248. The important conclusion here is that
  249.  
  250.         No control command may cause the buffer to have more than 40
  251.         bytes in it.  In other words, all control commands must end on
  252.         or before the 40-byte boundary.
  253.  
  254. Any picture violating the last condition will cause Elite to get a bus
  255. error when the picture is loaded.
  256.  
  257.  
  258. <Tiny>  *.TNY (any resolution)
  259.         *.TN1 (low resolution)
  260.         *.TN2 (medium resolution)
  261.         *.TN3 (high resolution)
  262.  
  263.    Several people have reported sightings of mutated Tiny pictures that
  264. do not follow the standard format, so let's be careful out there.  What
  265. is described here is the format that David Mumper's original
  266. TNYSTUFF.PRG produces.
  267.  
  268. 1 byte          resolution (same as NEO, but +3 indicates rotation
  269.                 information also follows)
  270.  
  271. If resolution > 2 {
  272. 1 byte          left and right color animation limits.  High 4 bits
  273.                 hold left (start) limit; low 4 bits hold right (end)
  274.                 limit
  275. 1 byte          direction and speed of color animation (negative value
  276.                 indicates left, positive indicates right, absolute value
  277.                 is delay in 1/60's of a second.
  278. 1 word          color rotation duration (number of iterations)
  279. }
  280.  
  281. 16 words        palette
  282. 1 word          number of control bytes
  283. 1 word          number of data words
  284. 3-10667 bytes   control bytes
  285. 1-16000 words   data words
  286. -------------
  287. 42-32044 bytes  total
  288.  
  289. Control byte meanings:
  290.  
  291.         For a given control byte, x:
  292.  
  293.         x < 0   Absolute value specifies the number of unique words to
  294.                 take from the data section (from 1 to 127)
  295.         x = 0   1 word is taken from the control section which specifies
  296.                 the number of times to repeat the next data word (from
  297.                 128 to 32767)
  298.         x = 1   1 word is taken from the control section which specifies
  299.                 the number of unique words to be taken from the data
  300.                 section (from 128 - 32767)
  301.         x > 1   Specifies the number of times to repeat the next word
  302.                 taken from the data section (from 2 to 127)
  303.  
  304. Format of expanded data:
  305.  
  306.    The expanded data is not simply screen memory bitmap data; instead, the 
  307. data is divided into four sets of vertical columns.  (This results in
  308. better compression.)  A column consists of one specific word taken
  309. >from each scan line, going from top to bottom.  For example, column 1 
  310. consists of word 1 on scanline 1 followed by word 1 on scanline 2, etc., 
  311. followed by word 1 on scanline 200.
  312.    The columns appear in the following order:
  313.  
  314.    1st set contains columns 1, 5,  9, 13, ..., 69, 73, 77 in order
  315.    2nd set contains columns 2, 6, 10, 14, ..., 70, 74, 78 in order
  316.    3rd set contains columns 3, 7, 11, 15, ..., 71, 75, 79 in order
  317.    4th set contains columns 4, 8, 12, 16, ..., 72, 76, 80 in order
  318.  
  319. Note that Tiny partitions the screen this way regardless of resolution; i.e., 
  320. these aren't bitplanes.  For example, medium resoltion only has two bitplanes, 
  321. but Tiny still divides medium resolution pictures into four parts.
  322.  
  323.  
  324. <Spectrum 512>  *.SPU
  325.  
  326. 80 words        first scan line of picture (unused) -- should be zeroes
  327. 15920 words     picture data (screen memory) for scan lines 1 through 199
  328. 9552 words      3 palettes for each scan line (the top scan line is
  329.                 not included because Spectrum 512 can't display it)
  330. -----------
  331. 51104 bytes     total
  332.  
  333. Note that the Spectrum 512 mode's three palette changes per scan
  334. line allow more colors on the screen than normally possible, but a
  335. tremendous amount of CPU time is required to maintain the image.
  336.  
  337. The Spectrum format specifies a palette of 48 colors for each scan line.
  338. To decode a Spectrum picture, one must be know which of these 48 colors
  339. are in effect for a given horizontal pixel position.
  340.  
  341. Given an x-coordinate (from 0 to 319) and a color index (from 0 to 15),
  342. the following C function will return the proper index into the Spectrum
  343. palette (from 0 to 47):
  344.  
  345. /*
  346.  *  Given an x-coordinate and a color index, returns the corresponding
  347.  *  Spectrum palette index.
  348.  *
  349.  *  by Steve Belczyk; placed in the public domain December, 1990.
  350.  */
  351. int 
  352. FindIndex(x, c)
  353.     int x, c;
  354. {
  355.     int x1;
  356.  
  357.     x1 = 10 * c;
  358.  
  359.     if (1 & c)        /* If c is odd */
  360.         x1 = x1 - 5;
  361.     else            /* If c is even */
  362.         x1 = x1 + 1;
  363.  
  364.     if (x >= x1 && x < x1 + 160) 
  365.         c = c + 16;
  366.     else if (x >= x1 + 160) 
  367.         c = c + 32;
  368.  
  369.     return c;
  370. }
  371.  
  372.  
  373. <Spectrum 512 (Compressed)>        *.SPC
  374.  
  375. 1 word          flag word [$5350 or "SP"]
  376. 1 word          reserved for future use [always 0]
  377. 1 long          length of data bit map
  378. 1 long          length of color bit map
  379. <= 32092 bytes  compressed data bit map
  380. <= 17910 bytes  compressed color bit map
  381. --------------
  382. <= 50014 bytes   total
  383.  
  384. Data compression:
  385.  
  386.    Compression is via a modified run length encoding (RLE) scheme,
  387. similar to DEGAS compressed and Tiny.  The data map is stored as a
  388. sequence of records.  Each record consists of a header byte followed by
  389. one or more data bytes.  The meaning of the header byte is as follows:
  390.  
  391.         For a given header byte, x:
  392.  
  393.            0 <= x <= 127   Use the next x + 1 bytes literally (no repetition)
  394.         -128 <= x <=  -1   Use the next byte -x + 2 times
  395.  
  396. The data appears in the following order:
  397.  
  398.         1. Picture data, bit plane 0, scan lines 1 - 199
  399.         2. Picture data, bit plane 1, scan lines 1 - 199
  400.         3. Picture data, bit plane 2, scan lines 1 - 199
  401.         4. Picture data, bit plane 3, scan lines 1 - 199
  402.  
  403. Decompression of data ends when 31840 data bytes have been used.
  404.  
  405. Color map compression:
  406.  
  407.    Each 16-word palette is compressed separately.  There are three
  408. palettes for each scan line (597 total).  The color map is stored as a
  409. sequence of records.  Each record starts with a 1-word bit vector which
  410. specifies which of the 16 palette entries are included in the data
  411. following the bit vector (1 = included, 0 = not included).  If a palette
  412. entry is not included, it is assumed to be zero (black).  The least
  413. significant bit of the bit vector refers to palette entry zero, while the
  414. most significant bit refers to palette entry 15.  Bit 15 must be zero,
  415. since Spectrum 512 does not use palette entry 15.  Bit 0 should also be
  416. zero, since Spectrum 512 always makes the background color black.
  417.    The words specifying the values for the palette entries indicated in
  418. the bit vector follow the bit vector itself, in order (0 - 15).
  419.  
  420.  
  421. <Art Director>  *.ART (low resolution only)
  422.  
  423. 16000 words     picture data (screen memory)
  424. 16 words        palette
  425. 15 * 16 words   15 more palettes for animation
  426. -------------
  427. 32512 bytes     total
  428.  
  429.  
  430. <C.O.L.R. Object Editor Mural>        *.MUR (low resolution only)
  431.  
  432. 16000 words     picture data (screen memory)
  433.                 (palettes are stored in separate files)
  434. -----------
  435. 32000 bytes     total
  436.  
  437.  
  438. <Doodle>        *.DOO (high resolution only)
  439.  
  440. 16000 words     picture data (screen memory)
  441. -----------
  442. 32000 bytes     total
  443.  
  444.  
  445. <Animatic Film> *.FLM (low resolution only)
  446.  
  447. 1 word          number of frames
  448. 16 words        palette
  449. 1 word          speed (0 - 99; value is 99 - # vblanks to delay between frames)
  450. 1 word          direction (0 = forwards, 1 = backwards)
  451. 1 word          end action (what to do after the last frame)
  452.                 0 = pause, then repeat from beginning
  453.                 1 = immediately repeat from beginning
  454.                 2 = reverse (change direction)
  455. 1 word          width of film in pixels
  456. 1 word          height of film in pixels
  457. 1 word          Animatic version number (major)
  458. 1 word          Animatic version number (minor)
  459. 1 long          magic number 27182818 (hex)
  460. 3 longs         reserved for expansion (should be all zeros)
  461. --------
  462. 32 words        total for header
  463.  
  464. ? words         image data (words of screen memory) for each frame, in order
  465.  
  466.  
  467. <GEM Bit Image> *.IMG
  468.  
  469. 1 word          version number of image file [1]
  470. 1 word          length of header in words [usually 8]
  471. 1 word          number of color planes [1 for monochrome]
  472. 1 word          pattern length in bytes [1-8, usually 2 for screen images]
  473. 1 word          pixel width in microns (1/1000 mm, 25400 microns per inch)
  474. 1 word          pixel height in microns
  475. 1 word          line width in pixels
  476. 1 word          number of lines
  477. -------
  478. ? words         header length defined in 2nd word of header
  479.  
  480. ? bytes         data
  481.  
  482. NOTES:  If the image is a color image (planes > 1), the planes are stored
  483. separately starting with plane 0.  There is, however, no standard way of
  484. storing the color palette.  Some programs may save the palette in separate
  485. files, some may extend the header.  For this reason, you should never
  486. assume the header is 8 words long, always get the header length from the
  487. 2nd word of the header.  Also, the line width in the 7th word is the number
  488. of pixels in a line.  Since the data is encoded in byte-wide packets, the
  489. actual unpacked line width is always a multiple of 8, and may be 1-7 pixels
  490. longer than the length specified in the header.
  491.  
  492. For each byte x in the data section,
  493.  
  494.         x = 0           Pattern/scanline run.
  495.                         Read the next byte, n (unsigned).
  496.  
  497.                         If n > 0 then:
  498.                                 Read a number of bytes equal to the "pattern
  499.                                 length" word in the header.  Repeat this
  500.                                 pattern n times.
  501.  
  502.                         If n = 0 then:
  503.                                 Scanline run.  Data for the next scanline
  504.                                 is to be used multiple times.  Read the
  505.                                 following record:
  506.  
  507.                                 1 byte          flag byte [$FF]
  508.                                 1 byte          number of times to use
  509.                                                 next scanline data
  510.  
  511.                                 The data for the next scanline follows,
  512.                                 compressed normally.
  513.  
  514.         x = 80 (hex)    Uncompressed bit string.  The next byte
  515.                         determines the number of bytes to use
  516.                         literally.  The literal data bytes follow.
  517.  
  518.         otherwise       Solid run.  The value of x determines
  519.                         what to draw.  The high bit specifies whether
  520.                         the pixels are set or cleared.  A 1 indicates
  521.                         a byte-run using $FF, a 0 indicates a byte-run
  522.                         using $00.  The low 7 bits, taken as an unsigned
  523.                         quantity, specify the length of the run in bytes.
  524.  
  525.  
  526. <STAD>          *.PAC (high resolution only)
  527.  
  528. 4 bytes         "pM86" (vertically packed) or "pM85" (horizontally packed)
  529. 1 byte          id byte
  530. 1 byte          pack byte (most frequently occuring byte in bitmap)
  531. 1 byte          "special" byte
  532. -------
  533. 7 bytes         total for header
  534.  
  535. ? bytes         data
  536.  
  537. The data is encoded as follows.  For each byte x in the data section:
  538.  
  539.         x = id byte             Read one more byte, n.  Use pack byte 
  540.                                 n + 1 times.
  541.         x = "special" byte      Read two more bytes, d, and n (in order).
  542.                                 Use byte d n times.
  543.         otherwise               Use byte x literally.
  544.  
  545.  
  546. <Imagic Film/Picture>           *.IC1 (low resolution)
  547.                                 *.IC2 (medium resolution)
  548.                                 *.IC3 (high resolution)
  549.  
  550. 4 bytes         "IMDC"
  551. 1 word          resolution (0 = low res, 1 = medium res, 2 = high res)
  552. 16 words        palette
  553. 1 word          date (GEMDOS format)
  554. 1 word          time (GEMDOS format)
  555. 8 bytes         name of base picture file (for delta compression), or zeroes
  556. 1 word          length of data (?)
  557. 1 long          registration number
  558. 8 bytes         reserved
  559. 1 byte          compressed? (0 = no, 1 = yes)
  560.  
  561. If compressed {
  562. 1 byte          delta-compressed? (-1 = no, > -1 = yes)
  563. 1 byte          ?
  564. 1 byte          escape byte
  565. }
  566. -------
  567. 65 bytes        total for header (68 bytes if compressed)
  568.  
  569. ? bytes         data
  570.  
  571.    Compressed data may be either stand-alone or delta-compressed (relative
  572. to the base picture named in the header).  Delta compression involves
  573. storing only how the picture differs from the base picture (i.e., only
  574. portions of the screen that have changed are stored).  This is used to
  575. to encode animated sequences efficiently.
  576.  
  577. Compressed data, stand-alone:
  578.  
  579. For each byte x in the data section:
  580.  
  581.         x = escape byte         Read one more byte, n.  (n is unsigned).
  582.  
  583.                                 If n >= 2, use the next byte n times.
  584.                                 If n = 1, keep reading bytes until a
  585.                                 byte k not equal to 1 is encountered.
  586.                                 Then read the next byte d.
  587.                                 If the number of 1 bytes encountered is o,
  588.                                 use d (256 * o + k) times.  I.e.,
  589.  
  590.                                 if (n == 1) {
  591.                                         o = 0;
  592.                                         while (n == 1) {
  593.                                                 o++;
  594.                                                 n = next byte;
  595.                                         }
  596.  
  597.                                         k = n;
  598.                                         d = next byte;
  599.  
  600.                                         Use d (256 * o + k) times.
  601.                                 }
  602.                                 else {
  603.                                         d = next byte;
  604.                                         Use d (n) times.
  605.                                 }
  606.  
  607.         x != escape byte        Use x literally.
  608.  
  609. Compressed data, delta compressed:
  610.  
  611. For each byte x in the data section:
  612.  
  613.         x = escape byte         Read one more byte, n.  (n is unsigned).
  614.  
  615.                                 If n >= 3, use the next byte n times.
  616.                                 If n = 1, do the same as for n = 1 in
  617.                                 stand-alone compression (above).
  618.                                 If n = 2, then set n = next byte.
  619.                                         If n = 0, end of picture.
  620.                                         If n >= 2, take n bytes from base
  621.                                         picture.
  622.                                         If n = 1, do the same as for n = 1
  623.                                         in stand-alone compression (above),
  624.                                         but take (256 * o + k) bytes from 
  625.                                         base picture.
  626.  
  627.         x != escape byte        Use x literally.
  628.  
  629.  
  630. <IFF Format>    *.IFF
  631.  
  632. 4 bytes         "FORM" (FORM chunk ID)
  633. 1 long          length of file that follows
  634. 4 bytes         "ILBM" (InterLeaved BitMap file ID)
  635.  
  636. 4 bytes         "BMHD" (BitMap HeaDer chunk ID)
  637. 1 long          length of chunk [20]
  638. 20 bytes        1 word = image width in pixels
  639.                 1 word = image height in lines
  640.                 1 word = image x-offset [usually 0]
  641.                 1 word = image y-offset [usually 0]
  642.                 1 byte = # bitplanes
  643.                 1 byte = mask (0=no, 1=impl., 2=transparent, 3=lasso)
  644.                 1 byte = compressed [1] or uncompressed [0]
  645.                 1 byte = unused [0]
  646.                 1 word = transparent color (for mask=2)
  647.                 1 byte = x-aspect [5=640x200, 10=320x200/640x400, 20=320x400]
  648.                 1 byte = y-aspect [11]
  649.                 1 word = page width (usually the same as image width)
  650.                 1 word = page height (usually the same as image height)
  651.  
  652. 4 bytes         "CMAP" (ColorMAP chunk ID)
  653. 1 long          length of chunk [3*n where n is the # colors]
  654. 3n bytes        3 bytes per RGB color.  Each color value is a byte
  655.                 and the actual color value is left-justified in the
  656.                 byte such that the most significant bit of the value
  657.                 is the MSB of the byte.  (ie. a color value of 15 ($0F)
  658.                 is stored as $F0)  The bytes are stored in R,G,B order.
  659.  
  660. 4 bytes         "CRNG" (Color RaNGe chunk ID)
  661. 1 long          length of chunk [8]
  662. 8 bytes         1 word = reserved [0]
  663.                 1 word = animation speed (16384 = 60 steps per second)
  664.                 1 word = active [1] or inactive [0]
  665.                 1 byte = left/lower color animation limit
  666.                 1 byte = right/upper color animation limit
  667.  
  668. 4 bytes         "CAMG" (Commodore AMiGa viewport mode chunk ID)
  669. 1 long          length of chunk [4]
  670. 1 long          viewport mode bits (bit 11 = HAM, bit 3 = interlaced)
  671.  
  672. 4 bytes         "BODY" (BODY chunk ID)
  673. 1 long          length of chunk [# bytes of image data that follow]
  674. ? bytes         actual image data
  675.  
  676. NOTES: Some of these chunks may not be present in every IFF file, and may
  677. not be in this order.  You should always look for the ID bytes to find a
  678. certain chunk.  All chunk IDs are followed by a long value that tells the
  679. size of the chunk.  This is the number of bytes that FOLLOW the 4 ID bytes
  680. and size longword.  The exception to this is the FORM chunk.  The size
  681. longword that follows the FORM ID is the size of the remainder of the file.
  682. The FORM chunk must always be the first chunk in an IFF file.
  683.  
  684. The R,G,B ranges of AMIGA and ST are different (AMIGA 0...15, ST 0...7),
  685. as is the maximum number of bitplanes (AMIGA: 5, ST: 4).
  686.  
  687. Format of body data
  688.  
  689. An expanded picture is simply a bitmap.  The packing method is PackBits
  690. (see below), and is identical to MacPaint and DEGAS Elite compressed.
  691.  
  692. The (decompressed) body data appears in the following order:
  693.  
  694.         line 1 plane 0 ... line 1 plane 1 ... ... line 1 plane m
  695.         [line 1 mask (if appropriate)]
  696.         line 2 plane 0 ... line 2 plane 1 ... ... line 2 plane m
  697.         [line 2 mask (if appropriate)]
  698.         ...
  699.         line x plane 0 ... line x plane 1 ... ... line x plane m
  700.         [line x mask (if appropriate)]
  701.  
  702. The FORM chunk identifies the type of data:
  703.  
  704.         "ILBM" = interleaved bit map
  705.         "8SVX" = 8-bit sample voice
  706.         "SMUS" = simple music score
  707.         "FTXT" = formatted text (Amiga)
  708.  
  709.  
  710. <MacPaint>      *.MAC
  711.  
  712. 1 long          version number [0=ignore header, 2=header valid]
  713. 38 * 8 bytes    8x8 brush/fill patterns.  Each byte is a pattern row,
  714.                 and the bytes map the pattern rows top to bottom.  The
  715.                 patterns are stored in the order they appear at the bottom
  716.                 of the MacPaint screen top to bottom, left to right.
  717. 204 bytes       unused
  718. -------------
  719. 512 bytes       total for header
  720.  
  721. < 51200 bytes   compressed bitmap data
  722. -------------
  723. < 51712 bytes   total
  724.  
  725. NOTE:  The version number is actually a flag to MacPaint to indicate if
  726. the brush/fill patterns are present in the file.  If the version is 0,
  727. the default patterns are used.  Therefore you can simply save a MacPaint
  728. file by writing a blank header (512 $00 bytes), followed by the packed
  729. image data.
  730.  
  731. Bitmap compression:
  732.  
  733.    The bitmap data is for a 576 pixel by 720 pixel monochrome image.
  734. The packing method is PackBits (see below).  There are 72 bytes per
  735. scan line.  Each bit represents one pixel; 0 = white, 1 = black.
  736.  
  737.  
  738. <PackBits Compression Algorithm>
  739.  
  740. The following packing algorithm originated on the Mac, was adopted by
  741. Electronic Arts/Commodore for use in the IFF standard, and then by Tom
  742. Hudson for use in DEGAS Elite.  The algorithm is currently used in
  743. MacPaint, IFF, and DEGAS Elite compressed file formats.  Each scan line
  744. is packed separately, and packing never extends beyond a scan line.
  745.  
  746. For a given control byte 'n':
  747.     0 <= n <= 127   : use the next n + 1 bytes literally (no repetition).
  748.  -127 <= n <= -1    : use the next byte -n + 1 times.
  749.          n = -128   : no operation, not used.
  750.  
  751. -------------------------------------------------------------------------
  752.  
  753. * Roland Waldi contributed extensive information on the following formats:
  754.  
  755.         GEM, IMG, Doodle, STAD, Imagic Film/Picture, Art Director, IFF
  756.  
  757. ** John Brochu, ST picture formats guru, provided sage advice and many
  758.    corrections to the following formats:
  759.  
  760.         NeoChrome, DEGAS Elite Compressed, Spectrum 512 Compressed,
  761.         GEM Bit Image, IFF, MacPaint
  762.  
  763. Version of Wed Dec 19 11:20:55 EST 1990
  764. Cosmetic changes Tue Jan 29 00:17:51 EST 1991
  765.  
  766.  
  767.  
  768.